home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
instools
/
prelude.zip
/
LINGUA13.EXE
/
LINGUA.H
< prev
next >
Wrap
C/C++ Source or Header
|
1994-02-17
|
668b
|
28 lines
/* --------------------------------------------*\
| lingua.h (version 1.2) -- (C) SichemSoft 1993 |
| Roghorst 160, 6708 KS Wageningen, Netherlands |
| include for language independent applications |
| author: Anneke Sicherer-Roetman, date: 930521 |
\* --------------------------------------------*/
#ifndef LINGUAH
#define LINGUAH
#define UIT_ENCRYPT 53
#define TRUE 1
#define FALSE 0
#ifdef __MSDOS__
#define readRA "rb+"
#define writeRA "wb+"
#define lf "\r\n"
#define lfchk ('\r'+'\n')
#else /* UNIX */
#define readRA "r+"
#define writeRA "w+"
#define lf "\n"
#define lfchk ('\n')
#endif
#endif